github.com/klauspost/compress/gzip.Reader.decompressor (field)

9 uses

	github.com/klauspost/compress/gzip (current package)
		gunzip.go#L79: 	decompressor io.ReadCloser
		gunzip.go#L107: 		decompressor: z.decompressor,
		gunzip.go#L247: 	if z.decompressor == nil {
		gunzip.go#L248: 		z.decompressor = flate.NewReader(z.r)
		gunzip.go#L250: 		z.decompressor.(flate.Resetter).Reset(z.r, nil)
		gunzip.go#L262: 		n, z.err = z.decompressor.Read(p)
		gunzip.go#L336: 		n, err := z.decompressor.(io.WriterTo).WriteTo(mw)
		gunzip.go#L380: func (z *Reader) Close() error { return z.decompressor.Close() }